home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / bootrec.arc / BOOTMAKE.BAT < prev   
DOS Batch File  |  1986-01-03  |  437b  |  17 lines

  1. rem    This batch file will
  2. rem     1) assemble boot.asm
  3. rem     2) link it inot boot.exe
  4. rem     3) convert it into boot.com
  5. rem     4) copy it to the boot record
  6. rem        in a diskette in drive A
  7. rem        (be prepared for that)
  8. rem     5) delete extraneous files
  9. pause  Ready?
  10. masm boot,boot.obj,nul,nul
  11. link boot,boot,con;
  12. exe2bin boot.exe boot.com
  13. debug boot.com <boot.dbg
  14. del boot.obj
  15. del boot.exe
  16. del boot.com
  17.